/* Hero Section */
.hero-section {
  background-image: no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-section p {
  color: var(--text-light);
  margin: 0 auto 25px auto;
  line-height: 1.6;
}


.video-section {
  background: #fff;
  padding: 0 20px 60px;
  text-align: center;
}

.video-box {
  max-width: 887px;
  margin: -80px auto 0 auto; /* overlaps hero section */
  position: relative;
  z-index: 10;
}

.video-box video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .video-box iframe {
    height: 300px;
  }
}




/* second section *//* second section *//* second section */

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.partners-section {
  background: var(--text-light);
  padding: 0px 20px;
  text-align: center;
  margin-bottom: 70px;
}

.partners-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);
  
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;   /* equal horizontal & vertical spacing */
  max-width: 1300px;
  margin: 0 auto;
}

.partner {
  border: 1px solid #ccc;
  border-radius: 0px;
  padding: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.partner img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
}

.partner:hover {
  transform: translateY(-5px);
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .partner img {
    max-width: 100px;
    max-height: 60px;
  }
}




/* Third section *//* third section *//* third section */


.why-apply {
  background: var(--text-light); /* light bluish background */
  padding: 60px 20px;
}

.why-apply .container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}

.why-apply h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.why-apply .subtitle {
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 per row */
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.why-card {
  background: var(--text-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px ;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.why-card .icon {
  font-size: 24px;
  display: block;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.why-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.why-card p {
  line-height: 1.5;

}


/* Responsive for smaller screens */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}



/* Fourth section *//* Fourth section *//* Fourth section *//* Fourth section *//* Fourth section *//* Fourth section */


.services-header {
  padding: 40px 0px 0px 30px;
  background: var(--text-light);
}

.services-header-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}

.services-header .sub-heading {
  
  color: var(--highlight-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.services-header .main-heading {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1.3;
}






.services-section {
  padding: 60px 30px;
  background: var(--text-light);
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  grid-template-columns: 50% 50%; /* force equal 50-50 split */
  gap: 40px;
  align-items: flex-start; /* make equal height */
  margin-top: -30px;
}

/* Image fills left side */
.services-image {
  flex: 1;
  display: flex;
  align-items: flex-start;   /* ⬅️ align image to the top */
  justify-content: center;
   width: 100%;
  height: 100%; /* match accordion height */
  border-radius: 8px;
  padding-top: 0px;
  overflow: hidden;
}
.services-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Right content */
.services-content {
  flex: 1;                  /* take 50% width */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.services-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Accordion */
.accordion {
  border-top: 1px solid #ddd;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-color);
}
.accordion-header .icon {
  margin-right: 10px;
  font-size: 20px;
}
.accordion-header .title {
  color: var(--primary-color);
  font-size: 20px;
  flex: 1;
  text-align: left;
}
.toggle-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.accordion-body {
  display: none;
  padding: 0px 15px;
  
}
.accordion-item.active .accordion-body {
  display: block;
}
.accordion-item.active .toggle-icon {
  content: "-";
}

/* ✅ Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr;   /* stack vertically */
  }

  .services-image {
    height: 320px;               /* give a fixed height */
  }

  .services-image img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 700px) {
  .services-image {
    height: 250px;              /* smaller height on mobile */
  }
}


@media (max-width: 1100px) {
  .services-image {
    display: none;
  }
}






/* Fifth section */

.destinations {
  padding: 30px 20px;
  background: var(--text-light);
}

.destinations .container {
  max-width: 1300px;
  margin: 0 auto;
  height: 580px;
  
}

.destinations h4 {
  font-family: mukta, sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 5px;
}

.destinations h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.swiper {
  padding-bottom: 0;  /* removed extra gap */
}

.card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.card-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--text-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag {
  font-size: 18px;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: var(--text-light);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

/* Vertically Center Arrows */
.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
}







/* sixth section */

.confusion-section {
  background: var(--primary-color); /* Dark blue background */
  padding: 30px 30px;
  color: var(--text-light);
}

.confusion-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.confusion-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.confusion-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--highlight-color) !important; /* Green button */
  color: var(--text-light);
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600 !important;
}

.btn:hover {
  background: var(--highlight-colorhover) !important;
}

.confusion-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .confusion-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .confusion-image img {
    margin: 20px auto 0;
  }
}



